import { UserProfileBadge } from "@/components/layout/user-profile-badge" import Image from "next/image" import { authOptions } from "@/app/api/auth/[...nextauth]/route" import { getServerSession } from "next-auth/next" export default async function PendingLayout({ children, }: { children: React.ReactNode }) { const session = await getServerSession(authOptions) return (
{/* 헤더 없음 - 단순한 로고만 */}
EVCP Logo eVCP
{/* 간단한 사용자 정보만 */}
{/* 메인 컨텐츠 */}
{children}
) }